home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 4 / United Public Domain Gold 4.iso / fredfish / ff.0065.dms / ff.0065.adf / Bawk / example2 < prev    next >
Text File  |  1987-04-04  |  138b  |  10 lines

  1. BEGIN
  2. {
  3.     RS = '.';  # set record seperator to a period
  4. }
  5. {
  6.     if ( match( $1, @^[a-z]@ ) )
  7.         *$1 = toupper( *$1 );
  8.     printf( "%s\n", $0 );
  9. }
  10.